home *** CD-ROM | disk | FTP | other *** search
/ Tears Of The Sun Press Kit / Tears of the Sun Press Kit.iso / mac / Acrobat Reader 5 / Plug-Ins / WHA / WHA Library / WHA Library.rsrc / EXVW_1000 next >
Text File  |  2001-10-31  |  561b  |  21 lines

  1. gWidth = max(
  2.     zstring_width(zstring: '$$$/Dialogs/NewServices/Text1'),
  3.     zstring_width(zstring: '$$$/Dialogs/NewServices/Text2'),
  4.     max_char_width() * 32);
  5.  
  6. dialog(name: '$$$/Dialogs/NewServices')
  7. {
  8.     view(align_children: align_left)
  9.     {
  10.         static_text(name: '$$$/Dialogs/NewServices/Text1', width: gWidth);
  11.         static_text(name: '$$$/Dialogs/NewServices/Text2', width: gWidth);
  12.  
  13.         view(align_children: align_top)
  14.         {
  15.             list_box(item_id: 'list', width: gWidth, height: 200, align: align_fill);
  16.         }
  17.  
  18.         ok_cancel(ok_name: '$$$/Dialogs/NewServices/Update');
  19.     }
  20. }
  21.